home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / FISHFACT.PAK / FFACTWIN.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  60 lines

  1. #if !defined(__fshfctap_h)              // Sentry, use file only if it's not already included.
  2. #define __fshfctap_h
  3.  
  4. /*  Project fishfact
  5.     Borland International
  6.     Copyright ⌐ 1996. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    fishfact.exe Application
  9.     FILE:         ffactwin.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for fishfactApp (TApplication).
  16.  
  17. */
  18.  
  19.  
  20. #include <owl\pch.h>
  21. #pragma hdrstop
  22.  
  23.  
  24. #include "ffactwin.rh"            // Definition of all resources.
  25.  
  26.  
  27. //
  28. // FrameWindow must be derived to override Paint for Preview and Print.
  29. //
  30. //{{TDecoratedFrame = SDIDecFrame}}
  31. class SDIDecFrame : public TDecoratedFrame {
  32. public:
  33.     SDIDecFrame (TWindow *parent, const char far *title, TWindow *clientWnd, bool trackMenuSelection = false, TModule *module = 0);
  34.     ~SDIDecFrame ();
  35. };    //{{SDIDecFrame}}
  36.  
  37.  
  38. //{{TApplication = fishfactApp}}
  39. class fishfactApp : public TApplication {
  40. private:
  41.  
  42. public:
  43.     fishfactApp ();
  44.     virtual ~fishfactApp ();
  45.  
  46. //{{fishfactAppVIRTUAL_BEGIN}}
  47. public:
  48.     virtual void InitMainWindow();
  49. //{{fishfactAppVIRTUAL_END}}
  50.  
  51. //{{fishfactAppRSP_TBL_BEGIN}}
  52. protected:
  53.     void CmHelpAbout ();
  54. //{{fishfactAppRSP_TBL_END}}
  55. DECLARE_RESPONSE_TABLE(fishfactApp);
  56. };    //{{fishfactApp}}
  57.  
  58.  
  59. #endif                                      // __fshfctap_h sentry.
  60.